home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Palm Finder 2 / Src / App Sources / app_constants.h next >
Encoding:
Text File  |  2001-06-23  |  1.6 KB  |  57 lines

  1. // app_constants.h
  2.  
  3. // events
  4. const int    evt_deselect_icons            = 2001;
  5. // menu commands
  6.                 // apple menu
  7. const int    cmd_about                        = 3001;    
  8. const int    cmd_alarm_clock            = 3002;
  9. const int    cmd_calculator                = 3003;
  10. const int    cmd_chooser                    = 3004;
  11. const int    cmd_control_panel            = 3005;
  12. const int    cmd_key_caps                = 3006;
  13. const int    cmd_note_pad                    = 3007;
  14. const int    cmd_scrapbook                = 3008;
  15.                 // file menu
  16. const int    cmd_new_folder                = 3101;
  17. const int    cmd_open                        = 3102;
  18. const int    cmd_print                        = 3103;
  19. const int    cmd_close_window            = 3104;
  20. const int    cmd_get_info                    = 3105;
  21. const int    cmd_duplicate                = 3106;
  22.                 // edit menu
  23. const int    cmd_undo                        = 3201;
  24. const int    cmd_cut                            = 3202;
  25. const int    cmd_copy                        = 3203;
  26. const int    cmd_paste                        = 3204;
  27. const int    cmd_clear                        = 3205;
  28. const int    cmd_show_clipboard        = 3206;
  29.                 // view menu
  30. const int    cmd_view_as_sm_icon     = 3301;
  31. const int    cmd_view_as_icon             = 3301;
  32. const int    cmd_view_as_list             = 3301;
  33.                 // special menu
  34. const int    cmd_empty_trash            = 3401;
  35. const int    cmd_sleep                        = 3402;
  36. const int    cmd_restart                    = 3403;
  37. const int    cmd_shutdown                = 3404;
  38.  
  39. /*     notes: 
  40.         when starting up, check if prefs exist. if not, show startup sequence.
  41.         then show main form.
  42.         
  43.         restart should show startup sequence
  44.         
  45.         shut down should show "It is now safe to turn off your Macintosh." dialog
  46.         check the icon on a real Mac. (Centris 610). Also, give a 'Restart' button
  47.         that shows the startup sequence.
  48.         
  49.         remove reset capability.
  50.         
  51.         change palm menus to be minimal, show real about box from there
  52.         
  53.         'New Folder' should create icons on the desktop 'untitled folder'
  54.         
  55. */
  56.         
  57.